DeleteCookieRequest

data class DeleteCookieRequest(cookieName: String, url: String)

Represents request frame that can be used with Page#deleteCookie operation call.

Deletes browser cookie with given name, domain and path.

See also

Constructors

DeleteCookieRequest
Link copied to clipboard
fun DeleteCookieRequest(cookieName: String, url: String)

Properties

cookieName
Link copied to clipboard
val cookieName: String
Name of the cookie to remove.
url
Link copied to clipboard
val url: String
URL to match cooke domain and path.

Sources

jvm source
Link copied to clipboard